home *** CD-ROM | disk | FTP | other *** search
- package com.ibm.xml.dom;
-
- import org.w3c.dom.DOMException;
- import org.w3c.dom.Entity;
-
- public class EntityImpl extends NodeImpl implements Entity {
- static final long serialVersionUID = -3575760943444303423L;
- protected String publicId;
- protected String systemId;
- protected String notationName;
-
- public EntityImpl(DocumentImpl var1, String var2) {
- super(var1, var2, (String)null);
- }
-
- public short getNodeType() {
- return 6;
- }
-
- public String getNodeValue() {
- return null;
- }
-
- public void setNodeValue(String var1) throws DOMException {
- throw new DOMExceptionImpl((short)7, (String)null);
- }
-
- public String getPublicId() {
- if (super.syncData) {
- ((NodeImpl)this).synchronizeData();
- }
-
- return this.publicId;
- }
-
- public String getSystemId() {
- if (super.syncData) {
- ((NodeImpl)this).synchronizeData();
- }
-
- return this.systemId;
- }
-
- public String getNotationName() {
- if (super.syncData) {
- ((NodeImpl)this).synchronizeData();
- }
-
- return this.notationName;
- }
-
- public void setPublicId(String var1) {
- if (super.syncData) {
- ((NodeImpl)this).synchronizeData();
- }
-
- this.publicId = var1;
- }
-
- public void setSystemId(String var1) {
- if (super.syncData) {
- ((NodeImpl)this).synchronizeData();
- }
-
- this.systemId = var1;
- }
-
- public void setNotationName(String var1) {
- if (super.syncData) {
- ((NodeImpl)this).synchronizeData();
- }
-
- this.notationName = var1;
- }
- }
-